home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / diskBoot.OpenProm / RCS / stubs.c,v < prev   
Text File  |  1991-01-06  |  2KB  |  168 lines

  1. head     1.6;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.6
  10. date     91.01.06.00.18.40;  author dlong;  state Exp;
  11. branches ;
  12. next     1.5;
  13.  
  14. 1.5
  15. date     90.07.17.15.42.28;  author mendel;  state Exp;
  16. branches ;
  17. next     1.4;
  18.  
  19. 1.4
  20. date     89.01.06.08.14.47;  author brent;  state Exp;
  21. branches ;
  22. next     1.3;
  23.  
  24. 1.3
  25. date     87.05.08.17.48.07;  author brent;  state Exp;
  26. branches ;
  27. next     1.2;
  28.  
  29. 1.2
  30. date     86.07.21.09.37.33;  author brent;  state Exp;
  31. branches ;
  32. next     1.1;
  33.  
  34. 1.1
  35. date     86.07.18.09.34.15;  author brent;  state Exp;
  36. branches ;
  37. next     ;
  38.  
  39.  
  40. desc
  41. @Stubs for the boot program.
  42. @
  43.  
  44.  
  45. 1.6
  46. log
  47. @changed return type of panic() from int to void
  48. @
  49. text
  50. @#include "sprite.h"
  51. #include "machMon.h"
  52.  
  53. printf(format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10)
  54.     char *format;
  55.     Address arg1;
  56.     Address arg2;
  57.     Address arg3;
  58.     Address arg4;
  59.     Address arg5;
  60.     Address arg6;
  61.     Address arg7;
  62.     Address arg8;
  63.     Address arg9;
  64.     Address arg10;
  65. {
  66. #ifndef NO_PRINTF
  67.     Mach_MonPrintf(format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9,
  68.                arg10);
  69. #endif
  70. }
  71.  
  72. void panic(string)
  73.     char *string;
  74. {
  75. #ifndef NO_PRINTF
  76.     Mach_MonPrintf("Panic: %s\n", string);
  77. #endif
  78.     (romVectorPtr->abortEntry)();
  79.  
  80. }
  81. @
  82.  
  83.  
  84. 1.5
  85. log
  86. @*** empty log message ***
  87. @
  88. text
  89. @d23 1
  90. a23 1
  91. panic(string)
  92. @
  93.  
  94.  
  95. 1.4
  96. log
  97. @New include files and constants due to source reorganization
  98. @
  99. text
  100. @d4 1
  101. a4 1
  102. Sys_Printf(format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10)
  103. d17 1
  104. d20 1
  105. d23 1
  106. a23 2
  107. Sys_Panic(type, string)
  108.     int type;
  109. d26 1
  110. d28 3
  111. a30 1
  112.     Mach_MonTrap(romVectorPtr->abortEntry);
  113. @
  114.  
  115.  
  116. 1.3
  117. log
  118. @Had to fix Mon_Abort, no longer a macro
  119. @
  120. text
  121. @d2 1
  122. a2 1
  123. #include "sunMon.h"
  124. d17 1
  125. a17 1
  126.     Mon_Printf(format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9,
  127. d25 2
  128. a26 2
  129.     Mon_Printf("Panic: %s\n", string);
  130.     Mon_Trap(romVectorPtr->abortEntry);
  131. @
  132.  
  133.  
  134. 1.2
  135. log
  136. @Only has Sys_Printf and Sys_Panic now.
  137. @
  138. text
  139. @d26 1
  140. a26 1
  141.     Mon_Abort();
  142. @
  143.  
  144.  
  145. 1.1
  146. log
  147. @Initial revision
  148. @
  149. text
  150. @a3 5
  151. FsFileBlockIO()
  152. {
  153.     return;
  154. }
  155.  
  156. a26 10
  157. }
  158.  
  159. Fs_AttachDisk()
  160. {
  161.     return;
  162. }
  163.  
  164. Fs_BlocksToSectors()
  165. {
  166.     return;
  167. @
  168.